home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 101-125 / scopedisk102 / djclock / clockrexxexamples.lzh / move.rexx < prev    next >
OS/2 REXX Batch file  |  1989-05-04  |  201b  |  13 lines

  1. /* rexx  move window */
  2. options results
  3. call addlib "rexxsupport.library",0,-30,0
  4. address clockdj
  5. getwindow 'ClockDJ'
  6. win = result
  7. x = 1
  8. do y= 1 to 200 
  9.     movewindow win x y
  10.     call delay 5
  11.     x = x+1
  12.     end
  13.